home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr36 / gapcdr6.zip / CDOOR.ZIP / COMPILER.H < prev    next >
Text File  |  1993-04-19  |  2KB  |  60 lines

  1. /*
  2.    Copyright (C) 1988-1993 The GAP Development Company
  3.  
  4.    All Rights Reserved
  5.    
  6.    This source code is considered to be confidential information proprietary
  7.    to The GAP Development Company.  It is prohibited and punishable by law
  8.    to use or duplicate any part of this information.
  9.  
  10.    COMPILER.H
  11.  
  12.    Defines C compiler being used
  13.  
  14. */
  15.  
  16. //#define TC                              // use this for Turbo C (Borland C)
  17.  
  18. #define MSC                               // use this for Microsoft C
  19.  
  20. #ifdef TC
  21.    #if (__BORLANDC__ < 0X0300)
  22.       #define __pascal pascal
  23.       #define __near near
  24.       #define __far far
  25.       #define _open open
  26.       #define _close close
  27.       #define _FP_SEG FP_SEG
  28.       #define _FP_OFF FP_OFF
  29.       #define __interrupt _interrupt
  30.       #define _REGS REGS
  31.       #define _cputs cputs
  32.       #define _outp outp
  33.       #define _inp inp
  34.       #define _ltoa ltoa
  35.       #define _int86 int86
  36.       #define _strlwr strlwr
  37.       #define _chdir chdir
  38.       #define _setdisk setdisk
  39.       #define _getdisk getdisk
  40.       #define _lseek lseek
  41.       #define _strdate strdate
  42.       #define _itoa itoa
  43.       #define _cputs cputs
  44.       #define _outp outp
  45.       #define _inp inp
  46.       #define _ltoa ltoa
  47.       #define _int86 int86
  48.       #define _strlwr strlwr
  49.       #define _chdir chdir
  50.       #define _lseek lseek
  51.       #define _strdate strdate
  52.       #define _itoa itoa
  53.       #define _setdisk setdisk
  54.       #define _getdisk getdisk
  55.       #define _lock lock
  56.       #define _unlock unlock
  57.       #define _getcwd getcwd
  58.    #endif
  59. #endif
  60.